home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 6647 / 6647.xpi / chrome / httpfox.jar / content / bindings.xml next >
Extensible Markup Language  |  2009-04-04  |  666b  |  30 lines

  1. <?xml version="1.0"?>
  2.  
  3. <bindings xmlns="http://www.mozilla.org/xbl"
  4.     xmlns:xbl="http://www.mozilla.org/xbl"
  5.     xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  6.  
  7.     <binding id="startup">
  8.         <implementation>
  9.             <constructor><![CDATA[
  10.                 HttpFox.initGraphics(false);
  11.             ]]></constructor>
  12.             <destructor><![CDATA[
  13.                 shutdownHttpFox();
  14.             ]]></destructor>
  15.         </implementation>
  16.     </binding>
  17.  
  18.     <binding id="windowStartup">
  19.         <implementation>
  20.             <constructor><![CDATA[
  21.                 HttpFox.initGraphics(true);
  22.             ]]></constructor>
  23.             <destructor><![CDATA[
  24.                 shutdownHttpFox();
  25.             ]]></destructor>
  26.         </implementation>
  27.     </binding>
  28.  
  29. </bindings>
  30.